home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Medal Software 1
/
Gold Medal Software Volume 1 (Gold Medal) (1994).iso
/
prog
/
mysteryc.arj
/
EXH37.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-07-07
|
229 b
|
16 lines
#include <stdio.h>
main()
{
int a, b;
printf("Enter two numbers: ");
scanf("%d%d",&a,&b);
if (a > b)
printf("a is greater than b");
else
if (b > a)
printf("b is greater than a");
else
printf("a=b");
}